home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 40 / Issue 40.iso / pc / PCSoftware / HTML Tool 3.5 / htmltool.exe / _SETUP.1 / Full screen window.scp < prev    next >
Encoding:
Text File  |  2000-03-06  |  687 b   |  25 lines

  1. <HTMLtool>Open a new browser window in fullscreen mode</HTMLtool>
  2.  
  3. <!-- TWO STEPS TO INSTALL FULL SCREEN WINDOW:
  4.  
  5.   1.  Copy the coding into the HEAD of your HTML document
  6.   2.  Add the last code into the BODY of your HTML document  -->
  7.  
  8. <!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->
  9.  
  10. <HEAD>
  11.  
  12. <SCRIPT LANGUAGE="JavaScript">
  13. <!-- Begin
  14. function fullScreen(theURL) {
  15. window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
  16. }
  17. //  End -->
  18. </script>
  19. </HEAD>
  20.  
  21. <!-- STEP TWO: Copy this code into the BODY of your HTML document  -->
  22.  
  23. <BODY>
  24.  
  25. <a href="javascript:void(0);" onClick="fullScreen('full-screen.html');">Open Full Screen Window</a>